home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML Instance.sea / XML Instance / Required / plugins / HTMLWindow.jar / horst / ElementSplit.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-03-18  |  794 b   |  18 lines

  1. package horst;
  2.  
  3. public class ElementSplit {
  4.    boolean m_bSelected;
  5.    Element m_elem;
  6.    String debug;
  7.  
  8.    public ElementSplit(Element e, boolean bSelected) {
  9.       this.m_bSelected = bSelected;
  10.       this.m_elem = e;
  11.       if (e == null) {
  12.          System.out.println("s");
  13.       }
  14.  
  15.       this.debug = new String(e.getCharData());
  16.    }
  17. }
  18.